home *** CD-ROM | disk | FTP | other *** search
- global gZoom
-
- on mouseWithin me
- if gZoom = #Up then
- cursor(302)
- else
- cursor(303)
- end if
- updateStage()
- end
-
- on mouseLeave me
- cursor(-1)
- updateStage()
- end
-
- on mouseDown me
- scarica()
- updateStage()
- end
-
- on mouseUp me
- if the frame = 10 then
- if gZoom = #Up then
- go("loupe")
- gZoom = #down
- else
- go("scheda")
- gZoom = EMPTY
- end if
- else
- if the frame = 12 then
- go("fullpage")
- sprite(10).loc = point(320, 240)
- end if
- end if
- cursor(-1)
- end
-